home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
Fixation 1.3
/
error.h
< prev
next >
Wrap
Text File
|
1995-09-16
|
228b
|
10 lines
#define kDoVerifications true
#ifdef kDoVerifications
#define verify(x) ((x) ? 1 : verifyFailed(__FILE__, __LINE__))
#else
#define verify(x)
#endif
int verifyFailed(char *file, long line);
void VDebugStr( char * format, ... );